fix/스프링 시큐리티에서 로그아웃 동작 비활성화#9
Merged
GoGradually merged 1 commit intomasterfrom Dec 27, 2025
Hidden character warning
The head ref may contain hidden characters: "fix/\uc2a4\ud504\ub9c1-\uc2dc\ud050\ub9ac\ud2f0-\ub85c\uadf8\uc544\uc6c3-\ub3d9\uc791-\uc81c\uac70"
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
이 PR은 Spring Security의 기본 로그아웃 처리 기능을 비활성화합니다. JWT 기반의 stateless 인증 아키텍처를 사용하는 애플리케이션에서 세션 기반의 Spring Security 기본 로그아웃은 불필요하므로, 이를 명시적으로 비활성화하여 /logout 엔드포인트가 커스텀 로그아웃 로직에 의해서만 처리되도록 합니다.
- SecurityConfig에
.logout(AbstractHttpConfigurer::disable)설정 추가
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
변경된 점